Change target framework:
<TargetFramework>netcoreapp3.1</TargetFramework>
or for libraries:
#!/usr/bin/env node | |
import { createWriteStream, createReadStream } from 'fs'; | |
import { basename, extname } from 'path'; | |
import { createInterface } from 'readline'; | |
const args = process.argv.slice(2); | |
if (args.length !== 2) { | |
console.error('Usage: slicer <input_file> <target_size_mb>'); |
/// <summary> | |
/// Provides a mechanism to throttle the execution of actions on state updates. | |
/// </summary> | |
/// <typeparam name="T">The type of state to throttle. Must be a reference type.</typeparam> | |
public class Throttler<T> : IDisposable | |
where T : class | |
{ | |
private readonly ILogger<Throttler<T>> _logger; | |
private readonly IGrainBase _grain; | |
private readonly TimeSpan _throttleInterval; |
https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard
# Generate a key pair for the client (local) machine
$ ssh-keygen -t rsa
#!/bin/bash | |
rabbitmqctl stop_app | |
rabbitmqctl reset | |
rabbitmqctl start_app |